home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / smaltalk / gnu_st.lha / gnu_st / smalltalk-1.1.1 / mstpaths.h-dist < prev    next >
Text File  |  1991-09-12  |  2KB  |  64 lines

  1. /***********************************************************************
  2.  *
  3.  *    Definitions for various path related things.  These are compiled into
  4.  *    the GNU Smalltalk interpreter and are used for finding various files
  5.  *    (the image file, the kernel .st files, etc.).
  6.  *
  7.  ***********************************************************************/
  8.  
  9.  
  10. /***********************************************************************
  11.  *
  12.  * Copyright (C) 1990, 1991 Free Software Foundation, Inc.
  13.  * Written by Steve Byrne.
  14.  *
  15.  * This file is part of GNU Smalltalk.
  16.  *
  17.  * GNU Smalltalk is free software; you can redistribute it and/or modify it
  18.  * under the terms of the GNU General Public License as published by the Free
  19.  * Software Foundation; either version 1, or (at your option) any later 
  20.  * version.
  21.  * 
  22.  * GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
  23.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 
  24.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
  25.  * more details.
  26.  * 
  27.  * You should have received a copy of the GNU General Public License along with
  28.  * GNU Smalltalk; see the file COPYING.  If not, write to the Free Software
  29.  * Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  30.  *
  31.  ***********************************************************************/
  32.  
  33.  
  34.  
  35. /*
  36.  *    Change Log
  37.  * ============================================================================
  38.  * Author      Date       Change 
  39.  * sbyrne    15 Oct 89      Created.
  40.  *
  41.  */
  42.  
  43.  
  44. /***********************************************************************
  45.  *
  46.  *    You'll need to change these definitions if you do not install GNU
  47.  *    Smalltalk in the standard place (which, as defined here, is
  48.  *    /usr/local/smalltalk).  You should save this file as mstpaths.h and
  49.  *    leave mstpaths.h-dist in its original form.
  50.  *
  51.  ***********************************************************************/
  52.  
  53.  
  54. #ifndef __MSTPATHS__
  55. #define __MSTPATHS__
  56.  
  57. /* This defines where the kernel smalltalk (.st) files can be found */
  58. #define KERNEL_PATH "/usr/local/smalltalk"
  59.  
  60. /* This defines where to search for the saved binary image */
  61. #define IMAGE_PATH "/usr/local/smalltalk"
  62.  
  63. #endif /* __MSTPATHS__ */
  64.